home *** CD-ROM | disk | FTP | other *** search
- MENU 1,0,1,"Selection"
- FOR x = 1 TO 9
- MENU 1,x,1,"Option "+CHR$(48+x)
- NEXT x
- MENU 1,10,1,"Quit"
- FOR x = 2 TO 4
- MENU x,0,0,""
- NEXT x
- ON MENU GOSUB Selection
- MENU ON
- Delay:
- GOTO Delay
- Selection:
- IF MENU(1)=10 THEN MENU RESET: END
- LOCATE 10,20
- PRINT "You chose menu option";MENU(1);
- RETURN
-
-